added samples
[windows-sources.git] / sdk / samples / all in on code / Visual Studio 2010 / CSFTPUpload / MainForm.Designer.cs
blob72ed1152d7259001fcdef636db6ccd4698c98896
1 namespace CSFTPUpload
3 partial class MainForm
5 /// <summary>
6 /// Required designer variable.
7 /// </summary>
8 private System.ComponentModel.IContainer components = null;
10 /// <summary>
11 /// Clean up any resources being used.
12 /// </summary>
13 /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
14 protected override void Dispose(bool disposing)
16 if (disposing && (components != null))
18 components.Dispose();
20 base.Dispose(disposing);
23 #region Windows Form Designer generated code
25 /// <summary>
26 /// Required method for Designer support - do not modify
27 /// the contents of this method with the code editor.
28 /// </summary>
29 private void InitializeComponent()
31 this.pnlFTPServer = new System.Windows.Forms.Panel();
32 this.btnConnect = new System.Windows.Forms.Button();
33 this.tbFTPServer = new System.Windows.Forms.TextBox();
34 this.lbFTPServer = new System.Windows.Forms.Label();
35 this.lbCurrentUrl = new System.Windows.Forms.Label();
36 this.grpUploadFolder = new System.Windows.Forms.GroupBox();
37 this.chkCreateFolder = new System.Windows.Forms.CheckBox();
38 this.btnUploadFolder = new System.Windows.Forms.Button();
39 this.btnBrowseLocalFolder = new System.Windows.Forms.Button();
40 this.tbLocalFolder = new System.Windows.Forms.TextBox();
41 this.lbLocalFolder = new System.Windows.Forms.Label();
42 this.pnlStatus = new System.Windows.Forms.Panel();
43 this.grpLog = new System.Windows.Forms.GroupBox();
44 this.lstLog = new System.Windows.Forms.ListBox();
45 this.grpFileExplorer = new System.Windows.Forms.GroupBox();
46 this.lstFileExplorer = new System.Windows.Forms.ListBox();
47 this.pnlCurrentPath = new System.Windows.Forms.Panel();
48 this.btnNavigateParentFolder = new System.Windows.Forms.Button();
49 this.grpUploadFile = new System.Windows.Forms.GroupBox();
50 this.btnUploadFile = new System.Windows.Forms.Button();
51 this.btnBrowseLocalFile = new System.Windows.Forms.Button();
52 this.tbLocalFile = new System.Windows.Forms.TextBox();
53 this.lbLocalFile = new System.Windows.Forms.Label();
54 this.groupBox1 = new System.Windows.Forms.GroupBox();
55 this.btnDelete = new System.Windows.Forms.Button();
56 this.lbDelete = new System.Windows.Forms.Label();
57 this.pnlFTPServer.SuspendLayout();
58 this.grpUploadFolder.SuspendLayout();
59 this.pnlStatus.SuspendLayout();
60 this.grpLog.SuspendLayout();
61 this.grpFileExplorer.SuspendLayout();
62 this.pnlCurrentPath.SuspendLayout();
63 this.grpUploadFile.SuspendLayout();
64 this.groupBox1.SuspendLayout();
65 this.SuspendLayout();
66 //
67 // pnlFTPServer
68 //
69 this.pnlFTPServer.Controls.Add(this.btnConnect);
70 this.pnlFTPServer.Controls.Add(this.tbFTPServer);
71 this.pnlFTPServer.Controls.Add(this.lbFTPServer);
72 this.pnlFTPServer.Dock = System.Windows.Forms.DockStyle.Top;
73 this.pnlFTPServer.Location = new System.Drawing.Point(0, 0);
74 this.pnlFTPServer.Name = "pnlFTPServer";
75 this.pnlFTPServer.Size = new System.Drawing.Size(1077, 33);
76 this.pnlFTPServer.TabIndex = 0;
77 //
78 // btnConnect
79 //
80 this.btnConnect.Location = new System.Drawing.Point(440, 4);
81 this.btnConnect.Name = "btnConnect";
82 this.btnConnect.Size = new System.Drawing.Size(75, 23);
83 this.btnConnect.TabIndex = 2;
84 this.btnConnect.Text = "Connect";
85 this.btnConnect.UseVisualStyleBackColor = true;
86 this.btnConnect.Click += new System.EventHandler(this.btnConnect_Click);
87 //
88 // tbFTPServer
89 //
90 this.tbFTPServer.Location = new System.Drawing.Point(78, 8);
91 this.tbFTPServer.Name = "tbFTPServer";
92 this.tbFTPServer.Size = new System.Drawing.Size(355, 20);
93 this.tbFTPServer.TabIndex = 1;
94 this.tbFTPServer.Text = "ftp://localhost";
95 //
96 // lbFTPServer
97 //
98 this.lbFTPServer.AutoSize = true;
99 this.lbFTPServer.Location = new System.Drawing.Point(13, 13);
100 this.lbFTPServer.Name = "lbFTPServer";
101 this.lbFTPServer.Size = new System.Drawing.Size(58, 13);
102 this.lbFTPServer.TabIndex = 0;
103 this.lbFTPServer.Text = "FTPServer";
105 // lbCurrentUrl
107 this.lbCurrentUrl.AutoSize = true;
108 this.lbCurrentUrl.Location = new System.Drawing.Point(106, 10);
109 this.lbCurrentUrl.Name = "lbCurrentUrl";
110 this.lbCurrentUrl.Size = new System.Drawing.Size(66, 13);
111 this.lbCurrentUrl.TabIndex = 4;
112 this.lbCurrentUrl.Text = "Current Path";
114 // grpUploadFolder
116 this.grpUploadFolder.Controls.Add(this.chkCreateFolder);
117 this.grpUploadFolder.Controls.Add(this.btnUploadFolder);
118 this.grpUploadFolder.Controls.Add(this.btnBrowseLocalFolder);
119 this.grpUploadFolder.Controls.Add(this.tbLocalFolder);
120 this.grpUploadFolder.Controls.Add(this.lbLocalFolder);
121 this.grpUploadFolder.Dock = System.Windows.Forms.DockStyle.Top;
122 this.grpUploadFolder.Location = new System.Drawing.Point(524, 33);
123 this.grpUploadFolder.Name = "grpUploadFolder";
124 this.grpUploadFolder.Size = new System.Drawing.Size(553, 111);
125 this.grpUploadFolder.TabIndex = 0;
126 this.grpUploadFolder.TabStop = false;
127 this.grpUploadFolder.Text = "Upload Folder";
129 // chkCreateFolder
131 this.chkCreateFolder.AutoSize = true;
132 this.chkCreateFolder.Location = new System.Drawing.Point(91, 54);
133 this.chkCreateFolder.Name = "chkCreateFolder";
134 this.chkCreateFolder.Size = new System.Drawing.Size(165, 17);
135 this.chkCreateFolder.TabIndex = 4;
136 this.chkCreateFolder.Text = "Create a folder on FTP server";
137 this.chkCreateFolder.UseVisualStyleBackColor = true;
139 // btnUploadFolder
141 this.btnUploadFolder.Enabled = false;
142 this.btnUploadFolder.Location = new System.Drawing.Point(91, 77);
143 this.btnUploadFolder.Name = "btnUploadFolder";
144 this.btnUploadFolder.Size = new System.Drawing.Size(98, 23);
145 this.btnUploadFolder.TabIndex = 3;
146 this.btnUploadFolder.Text = "Upload Folder";
147 this.btnUploadFolder.UseVisualStyleBackColor = true;
148 this.btnUploadFolder.Click += new System.EventHandler(this.btnUploadFolder_Click);
150 // btnBrowseLocalFolder
152 this.btnBrowseLocalFolder.Location = new System.Drawing.Point(427, 25);
153 this.btnBrowseLocalFolder.Name = "btnBrowseLocalFolder";
154 this.btnBrowseLocalFolder.Size = new System.Drawing.Size(75, 23);
155 this.btnBrowseLocalFolder.TabIndex = 2;
156 this.btnBrowseLocalFolder.Text = "Browse";
157 this.btnBrowseLocalFolder.UseVisualStyleBackColor = true;
158 this.btnBrowseLocalFolder.Click += new System.EventHandler(this.btnBrowseLocalFolder_Click);
160 // tbLocalFolder
162 this.tbLocalFolder.Location = new System.Drawing.Point(91, 26);
163 this.tbLocalFolder.Name = "tbLocalFolder";
164 this.tbLocalFolder.ReadOnly = true;
165 this.tbLocalFolder.Size = new System.Drawing.Size(329, 20);
166 this.tbLocalFolder.TabIndex = 1;
168 // lbLocalFolder
170 this.lbLocalFolder.AutoSize = true;
171 this.lbLocalFolder.Location = new System.Drawing.Point(7, 30);
172 this.lbLocalFolder.Name = "lbLocalFolder";
173 this.lbLocalFolder.Size = new System.Drawing.Size(65, 13);
174 this.lbLocalFolder.TabIndex = 0;
175 this.lbLocalFolder.Text = "Local Folder";
177 // pnlStatus
179 this.pnlStatus.Controls.Add(this.grpLog);
180 this.pnlStatus.Dock = System.Windows.Forms.DockStyle.Bottom;
181 this.pnlStatus.Location = new System.Drawing.Point(0, 374);
182 this.pnlStatus.Name = "pnlStatus";
183 this.pnlStatus.Size = new System.Drawing.Size(1077, 199);
184 this.pnlStatus.TabIndex = 1;
186 // grpLog
188 this.grpLog.Controls.Add(this.lstLog);
189 this.grpLog.Dock = System.Windows.Forms.DockStyle.Fill;
190 this.grpLog.Location = new System.Drawing.Point(0, 0);
191 this.grpLog.Name = "grpLog";
192 this.grpLog.Size = new System.Drawing.Size(1077, 199);
193 this.grpLog.TabIndex = 0;
194 this.grpLog.TabStop = false;
195 this.grpLog.Text = "Log";
197 // lstLog
199 this.lstLog.Dock = System.Windows.Forms.DockStyle.Fill;
200 this.lstLog.FormattingEnabled = true;
201 this.lstLog.Location = new System.Drawing.Point(3, 16);
202 this.lstLog.Name = "lstLog";
203 this.lstLog.Size = new System.Drawing.Size(1071, 180);
204 this.lstLog.TabIndex = 0;
206 // grpFileExplorer
208 this.grpFileExplorer.Controls.Add(this.lstFileExplorer);
209 this.grpFileExplorer.Controls.Add(this.pnlCurrentPath);
210 this.grpFileExplorer.Dock = System.Windows.Forms.DockStyle.Left;
211 this.grpFileExplorer.Location = new System.Drawing.Point(0, 33);
212 this.grpFileExplorer.Name = "grpFileExplorer";
213 this.grpFileExplorer.Size = new System.Drawing.Size(524, 341);
214 this.grpFileExplorer.TabIndex = 2;
215 this.grpFileExplorer.TabStop = false;
216 this.grpFileExplorer.Text = "FTP File Explorer";
218 // lstFileExplorer
220 this.lstFileExplorer.Dock = System.Windows.Forms.DockStyle.Fill;
221 this.lstFileExplorer.FormattingEnabled = true;
222 this.lstFileExplorer.Location = new System.Drawing.Point(3, 48);
223 this.lstFileExplorer.Name = "lstFileExplorer";
224 this.lstFileExplorer.SelectionMode = System.Windows.Forms.SelectionMode.MultiExtended;
225 this.lstFileExplorer.Size = new System.Drawing.Size(518, 290);
226 this.lstFileExplorer.TabIndex = 0;
227 this.lstFileExplorer.DoubleClick += new System.EventHandler(this.lstFileExplorer_DoubleClick);
229 // pnlCurrentPath
231 this.pnlCurrentPath.Controls.Add(this.lbCurrentUrl);
232 this.pnlCurrentPath.Controls.Add(this.btnNavigateParentFolder);
233 this.pnlCurrentPath.Dock = System.Windows.Forms.DockStyle.Top;
234 this.pnlCurrentPath.Location = new System.Drawing.Point(3, 16);
235 this.pnlCurrentPath.Name = "pnlCurrentPath";
236 this.pnlCurrentPath.Size = new System.Drawing.Size(518, 32);
237 this.pnlCurrentPath.TabIndex = 6;
239 // btnNavigateParentFolder
241 this.btnNavigateParentFolder.Location = new System.Drawing.Point(9, 4);
242 this.btnNavigateParentFolder.Name = "btnNavigateParentFolder";
243 this.btnNavigateParentFolder.Size = new System.Drawing.Size(91, 23);
244 this.btnNavigateParentFolder.TabIndex = 5;
245 this.btnNavigateParentFolder.Text = "Parent Folder";
246 this.btnNavigateParentFolder.UseVisualStyleBackColor = true;
247 this.btnNavigateParentFolder.Click += new System.EventHandler(this.btnNavigateParentFolder_Click);
249 // grpUploadFile
251 this.grpUploadFile.Controls.Add(this.btnUploadFile);
252 this.grpUploadFile.Controls.Add(this.btnBrowseLocalFile);
253 this.grpUploadFile.Controls.Add(this.tbLocalFile);
254 this.grpUploadFile.Controls.Add(this.lbLocalFile);
255 this.grpUploadFile.Dock = System.Windows.Forms.DockStyle.Top;
256 this.grpUploadFile.Location = new System.Drawing.Point(524, 144);
257 this.grpUploadFile.Name = "grpUploadFile";
258 this.grpUploadFile.Size = new System.Drawing.Size(553, 96);
259 this.grpUploadFile.TabIndex = 3;
260 this.grpUploadFile.TabStop = false;
261 this.grpUploadFile.Text = "Upload Files";
263 // btnUploadFile
265 this.btnUploadFile.Enabled = false;
266 this.btnUploadFile.Location = new System.Drawing.Point(91, 52);
267 this.btnUploadFile.Name = "btnUploadFile";
268 this.btnUploadFile.Size = new System.Drawing.Size(98, 23);
269 this.btnUploadFile.TabIndex = 3;
270 this.btnUploadFile.Text = "Upload Files";
271 this.btnUploadFile.UseVisualStyleBackColor = true;
272 this.btnUploadFile.Click += new System.EventHandler(this.btnUploadFile_Click);
274 // btnBrowseLocalFile
276 this.btnBrowseLocalFile.Location = new System.Drawing.Point(427, 25);
277 this.btnBrowseLocalFile.Name = "btnBrowseLocalFile";
278 this.btnBrowseLocalFile.Size = new System.Drawing.Size(75, 23);
279 this.btnBrowseLocalFile.TabIndex = 2;
280 this.btnBrowseLocalFile.Text = "Browse";
281 this.btnBrowseLocalFile.UseVisualStyleBackColor = true;
282 this.btnBrowseLocalFile.Click += new System.EventHandler(this.btnBrowseLocalFile_Click);
284 // tbLocalFile
286 this.tbLocalFile.Location = new System.Drawing.Point(91, 26);
287 this.tbLocalFile.Name = "tbLocalFile";
288 this.tbLocalFile.ReadOnly = true;
289 this.tbLocalFile.Size = new System.Drawing.Size(329, 20);
290 this.tbLocalFile.TabIndex = 1;
292 // lbLocalFile
294 this.lbLocalFile.AutoSize = true;
295 this.lbLocalFile.Location = new System.Drawing.Point(7, 30);
296 this.lbLocalFile.Name = "lbLocalFile";
297 this.lbLocalFile.Size = new System.Drawing.Size(57, 13);
298 this.lbLocalFile.TabIndex = 0;
299 this.lbLocalFile.Text = "Local Files";
301 // groupBox1
303 this.groupBox1.Controls.Add(this.lbDelete);
304 this.groupBox1.Controls.Add(this.btnDelete);
305 this.groupBox1.Dock = System.Windows.Forms.DockStyle.Top;
306 this.groupBox1.Location = new System.Drawing.Point(524, 240);
307 this.groupBox1.Name = "groupBox1";
308 this.groupBox1.Size = new System.Drawing.Size(553, 96);
309 this.groupBox1.TabIndex = 4;
310 this.groupBox1.TabStop = false;
311 this.groupBox1.Text = "Delete Folders / Files";
313 // btnDelete
315 this.btnDelete.Enabled = false;
316 this.btnDelete.Location = new System.Drawing.Point(91, 19);
317 this.btnDelete.Name = "btnDelete";
318 this.btnDelete.Size = new System.Drawing.Size(98, 23);
319 this.btnDelete.TabIndex = 3;
320 this.btnDelete.Text = "Delete";
321 this.btnDelete.UseVisualStyleBackColor = true;
322 this.btnDelete.Click += new System.EventHandler(this.btnDelete_Click);
324 // lbDelete
326 this.lbDelete.AutoSize = true;
327 this.lbDelete.Location = new System.Drawing.Point(88, 56);
328 this.lbDelete.Name = "lbDelete";
329 this.lbDelete.Size = new System.Drawing.Size(238, 13);
330 this.lbDelete.TabIndex = 4;
331 this.lbDelete.Text = "Delete the selected items in the FTP File Explorer";
333 // MainForm
335 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
336 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
337 this.ClientSize = new System.Drawing.Size(1077, 573);
338 this.Controls.Add(this.groupBox1);
339 this.Controls.Add(this.grpUploadFile);
340 this.Controls.Add(this.grpUploadFolder);
341 this.Controls.Add(this.grpFileExplorer);
342 this.Controls.Add(this.pnlStatus);
343 this.Controls.Add(this.pnlFTPServer);
344 this.Name = "MainForm";
345 this.Text = "CSFTPUpload";
346 this.pnlFTPServer.ResumeLayout(false);
347 this.pnlFTPServer.PerformLayout();
348 this.grpUploadFolder.ResumeLayout(false);
349 this.grpUploadFolder.PerformLayout();
350 this.pnlStatus.ResumeLayout(false);
351 this.grpLog.ResumeLayout(false);
352 this.grpFileExplorer.ResumeLayout(false);
353 this.pnlCurrentPath.ResumeLayout(false);
354 this.pnlCurrentPath.PerformLayout();
355 this.grpUploadFile.ResumeLayout(false);
356 this.grpUploadFile.PerformLayout();
357 this.groupBox1.ResumeLayout(false);
358 this.groupBox1.PerformLayout();
359 this.ResumeLayout(false);
363 #endregion
365 private System.Windows.Forms.Panel pnlFTPServer;
366 private System.Windows.Forms.Button btnConnect;
367 private System.Windows.Forms.TextBox tbFTPServer;
368 private System.Windows.Forms.Label lbFTPServer;
369 private System.Windows.Forms.GroupBox grpUploadFolder;
370 private System.Windows.Forms.Panel pnlStatus;
371 private System.Windows.Forms.GroupBox grpFileExplorer;
372 private System.Windows.Forms.ListBox lstFileExplorer;
373 private System.Windows.Forms.Button btnUploadFolder;
374 private System.Windows.Forms.Button btnBrowseLocalFolder;
375 private System.Windows.Forms.TextBox tbLocalFolder;
376 private System.Windows.Forms.Label lbLocalFolder;
377 private System.Windows.Forms.Label lbCurrentUrl;
378 private System.Windows.Forms.Panel pnlCurrentPath;
379 private System.Windows.Forms.Button btnNavigateParentFolder;
380 private System.Windows.Forms.GroupBox grpLog;
381 private System.Windows.Forms.ListBox lstLog;
382 private System.Windows.Forms.CheckBox chkCreateFolder;
383 private System.Windows.Forms.GroupBox grpUploadFile;
384 private System.Windows.Forms.Button btnUploadFile;
385 private System.Windows.Forms.Button btnBrowseLocalFile;
386 private System.Windows.Forms.TextBox tbLocalFile;
387 private System.Windows.Forms.Label lbLocalFile;
388 private System.Windows.Forms.GroupBox groupBox1;
389 private System.Windows.Forms.Label lbDelete;
390 private System.Windows.Forms.Button btnDelete;